home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / fc20hpgm.arc / IBMMODE.300 < prev    next >
Text File  |  1987-03-24  |  1KB  |  56 lines

  1. A
  2. ;    This is file: IBMMODE.300
  3. ;
  4. ;    This is a patch file for the IBM-DOS 3.00 MODE command.
  5. ;
  6. ;    To use this file:
  7. ;        DEBUG MODE.COM <IBMMODE.300
  8.  
  9. A1266
  10. ;Patch 0001:
  11. ;Recognize no resident MODE when someone else chgs INT 1D.
  12. ;Allow MODE command to shift screen.
  13. ;Patch developed by Hersey Micro Consulting, Inc. (313) 994-3259
  14. ;Replace:
  15. ;xxxx:1266 8B1E7600       MOV    BX,[0076]
  16. ;xxxx:126A 81FB00F0       CMP    BX,F000
  17. ;With:
  18. ;xxxx:1266 8B1E3005       MOV    BX,[0530]
  19. ;xxxx:126A 21DB           AND    BX,BX
  20. ;xxxx:126C 90             NOP
  21. ;xxxx:126D 90             NOP
  22. MOV BX,[0530]
  23. AND BX,BX
  24. NOP
  25. NOP
  26.  
  27. A1298
  28. ;Patch 0002:
  29. ;Recognize no resident MODE when someone else chgs INT 1D.
  30. ;Allow MODE command to shift screen.
  31. ;Patch developed by Hersey Micro Consulting, Inc. (313) 994-3259
  32. ;Replace:
  33. ;xxxx:1298 2E8B3EB102     MOV    DI,CS:[02B1]
  34. ;xxxx:129D 2EA1B302       MOV    AX,CS:[02B3]
  35. ;xxxx:12A1 8EC0           MOV    ES,AX
  36. ;xxxx:12A3 8B367400       MOV    SI,[0074]
  37. ;With:
  38. ;xxxx:1298 C4367400       LES     SI,[0074]
  39. ;xxxx:129C 8CC3           MOV     BX,ES
  40. ;xxxx:129E 2E             CS:
  41. ;xxxx:129F C43EB102       LES     DI,[02B1]
  42. ;xxxx:12A3 90             NOP
  43. ;xxxx:12A4 90             NOP
  44. ;xxxx:12A5 90             NOP
  45. ;xxxx:12A6 90             NOP
  46. LES SI,[0074]
  47. MOV BX,ES
  48. CS: LES DI,[02B1]
  49. NOP
  50. NOP
  51. NOP
  52. NOP
  53.  
  54. W
  55. Q
  56.